home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
misc_src
/
knowhow4
/
image_p.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-11-01
|
187b
|
12 lines
#ifndef __IMAGE_TYPE_H_
#define __IMAGE_TYPE_H_
struct imageType
{
int xmax, ymax;
unsigned char data[];
};
typedef imageType* imageP;
#endif __IMAGE_TYPE_H_